home *** CD-ROM | disk | FTP | other *** search
- ; PSPad clip definition file for Visual Basic .NET
- ; author: Willem Bogaerts
- ; last revision 23. Feb 2006
- ;
- [Boolean | Boolean data type]
- Boolean|
- [ByRef | ByRef]
- ByRef º As |
- [ByVal | ByVal]
- ByVal º As |
- [Class | Class]
- Class º()
- |
- End Class
- [CType | General conversion]
- CType(º, |)
- [Dim | Dim]
- Dim º As |
- [Friend | Only visible within package]
- Friend º|
- [Function | Function]
- Function º()
- |
- End Function
- [Inherits | Inherits]
- Inherits º|
- [Integer | Integer data type]
- Integer|
- [Long | Long data type]
- Long|
- [Me | Reference to the current object]
- Me.º|
- [Namespace | Namespace]
- Namespace º()
- |
- End Namespace
- [Private | Only visible within class/instance]
- Private º|
- [Protected | Only visible within class/instance and subclasses]
- Protected º|
- [Protected Friend | Only visible within package and subclasses]
- Protected Friend º|
- [Public | Visible everywhere]
- Public º|
- [ReadOnly Property | ReadOnly Property]
- ReadOnly Property º() As |
- Get
-
- Return
- End Get
- End Property
- [Return | Return]
- Return º|
- [String | String data type]
- String|
- [Sub | Sub]
- Sub º()
- |
- End Sub
- [Throw exception | Throw exception]
- Throw New º(|)
- ;